	window.onload = function ()
		{
		cacheImg('hpi/bg_img_mask_inreg.gif', 'hpi/btn_meniu_on.png', 'hpi/btn_meniu_off.png', 'hpi/btn_meniu_on_x2.png', 'hpi/btn_meniu_off_x2.png') ;
		}
	function cacheImg()
		{
		if(document.images)
			{
			if(!document.imageArray) document.imageArray = new Array();
			var i,j = document.imageArray.length, args = cacheImg.arguments;
			for(i=0; i<args.length; i++)
				{
				if (args[i].indexOf("#")!=0)
					{
					document.imageArray[j] = new Image;
					document.imageArray[j++].src = args[i];
					}
				}
			}
		}
